home *** CD-ROM | disk | FTP | other *** search
- # MAKEFILE for AlgoRhythms by Thomas E. Janzen
- # 30 October 1992
- #
- OFLAG = nooptglobal
- ERRFLAGS = ignore=88+87
- OBJ = ALGO_OBJ:
- EXE = ALGO_EXE:
- SRC = ALGO_SRC:
- LST = ALGO_LST:
-
- CFLAGS = data=near cpu=ANY code=far \
- math=IEEE stringmerge objectname=$(OBJ) OptimizerTime incdirectory=$(SRC) \
- nostackcheck parameters=registers nodebug define INCLUDES_2=1 \
- define __USE_SYSBASE=1 noversion noverbose
-
- WITH = $(EXE)ALGORHYTHMS.WITH
- $(EXE)AlgoRhythms: $(OBJ)AlgoRhythms.o $(OBJ)DrawForm.o $(OBJ)Files.o \
- $(OBJ)menus.o $(OBJ)musicserial.o \
- $(OBJ)musictimer.o $(OBJ)Record.o $(OBJ)scales.o $(OBJ)window.o \
- $(OBJ)audio.o $(OBJ)forms.o $(OBJ)voices.o $(OBJ)musicrexx.o \
- $(OBJ)pitchnames.o $(OBJ)colors.o
- slink with $(WITH)
- $(OBJ)AlgoRhythms.o: $(SRC)AlgoRhythms.c $(SRC)AlgoRhythms.h \
- $(SRC)MusicTimer.h $(SRC)MusicSerial.h $(SRC)Files.h $(SRC)Scales.h \
- $(SRC)audio.h $(SRC)Window.h $(SRC)DrawForm.h $(SRC)Menus.h \
- $(SRC)Record.h $(SRC)forms.h $(SRC)voices.h $(SRC)musicrexx.h \
- $(SRC)colors.h
- sc $(CFLAGS) $(SRC)AlgoRhythms.c
- $(OBJ)DrawForm.o: $(SRC)DrawForm.c $(SRC)DrawForm.h $(SRC)AlgoRhythms.h\
- $(SRC)Window.h
- sc $(CFLAGS) $(OFLAG) $(SRC)DrawForm.c
- $(OBJ)Files.o: $(SRC)Files.c $(SRC)AlgoRhythms.h $(SRC)Window.h \
- $(SRC)Files.h $(SRC)audio.h
- sc $(CFLAGS) $(OFLAG) $(SRC)Files.c
- $(OBJ)Menus.o: $(SRC)Menus.c $(SRC)Window.h $(SRC)AlgoRhythms.h \
- $(SRC)scale_list.h $(SRC)Menus.h
- sc $(CFLAGS) $(OFLAG) $(SRC)Menus.c
- $(OBJ)MusicSerial.o: $(SRC)musicserial.c $(SRC)AlgoRhythms.h \
- $(SRC)Window.h $(SRC)MusicSerial.h $(SRC)Record.h $(SRC)Audio.h
- sc $(CFLAGS) $(ERRFLAGS) $(SRC)MusicSerial.c
- $(OBJ)MusicTimer.o: $(SRC)musictimer.c $(SRC)MusicTimer.h $(SRC)Window.h
- sc $(CFLAGS) $(ERRFLAGS) $(OFLAG) $(SRC)MusicTimer.c
- $(OBJ)Record.o: $(SRC)Record.c $(SRC)AlgoRhythms.h $(SRC)Menus.h \
- $(SRC)Record.h
- sc $(CFLAGS) $(SRC)Record.c
- $(OBJ)Scales.o: $(SRC)Scales.c $(SRC)Scales.h $(SRC)scale_list.h
- sc $(CFLAGS) $(OFLAG) $(SRC)Scales.c
- $(OBJ)Window.o: $(SRC)Window.c $(SRC)Window.h
- sc $(CFLAGS) $(OFLAG) $(SRC)Window.c
- $(OBJ)Audio.o: $(SRC)Audio.c $(SRC)Window.h $(SRC)AlgoRhythms.h \
- $(SRC)Audio.h $(SRC)Record.h
- sc $(CFLAGS) $(OFLAG) $(SRC)Audio.c
- $(OBJ)forms.o: $(SRC)forms.c $(SRC)scale_list.h $(SRC)window.h \
- $(SRC)forms.h $(SRC)algorhythms.h $(SRC)scales.h
- sc $(CFLAGS) $(OFLAG) $(SRC)forms.c
- $(OBJ)voices.o: $(SRC)voices.c $(SRC)voices.h $(SRC)window.h \
- $(SRC)AlgoRhythms.h $(SRC)pitchnames.h
- sc $(CFLAGS) $(OFLAG) $(SRC)voices.c
- $(OBJ)musicrexx.o: $(SRC)musicrexx.c $(SRC)musicrexx.h $(SRC)scales.h\
- $(SRC)drawform.h $(SRC)window.h $(SRC)files.h $(SRC)pitchnames.h
- sc $(CFLAGS) $(OFLAG) $(SRC)musicrexx.c
- $(OBJ)pitchnames.o: $(SRC)pitchnames.c $(SRC)pitchnames.h \
- $(SRC)AlgoRhythms.h $(SRC)pitchnames.h
- sc $(CFLAGS) $(OFLAG) $(SRC)pitchnames.c
- $(OBJ)colors.o: $(SRC)colors.c $(SRC)window.h $(SRC)colors.h
- sc $(CFLAGS) $(OFLAG) $(SRC)colors.c
-